博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论列表显示及排序,个人中心显示
阅读量:4969 次
发布时间:2019-06-12

本文共 2168 字,大约阅读时间需要 7 分钟。

 

  1. 显示所有评论
    {% for foo in ques.comments %}
  2. 所有评论排序
    uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))
    question=db.relationship('Question',backref=db.backref('comments',order_by=creatTime.desc))
  3. 显示评论条数
    {
    { ques.comments|length }}

    [{

    { question.comments|length }}]

  4. 完成个人中心

1.个人中心的页面布局(html文件及相应的样式文件)

2.定义视图函数def usercenter(user_id):

@app.route('/self/
')def self(user_id): user=User.query.filter(User.id==user_id).first() context={ 'user':user } return render_template('self.html',**context)

3.向前端页面传递参数

4.页面显示相应数据

发布的全部问答

发布的全部评论

个人信息

5.各个页面链接到个人中心

{% extends'base.html' %}{% block title %}    Self{% endblock %}{% block head %}    
{% endblock %}{% block main %}

{
{ user.username }}

全部问答

{% for foo in user.question %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.title }}

{

{ foo.detail }}

{% endfor %}

全部评论

{% for foo in user.comments %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.detail }}

{% endfor %}

个人信息

  • 用户名:{
    { user.username }}
  • 编号:{
    { user.id }}
  • 文章篇数:{
    { user.question|length }}
  • {% endblock %}

     

     

    转载于:https://www.cnblogs.com/lkm123/p/8029742.html

    你可能感兴趣的文章
    汇编第一章总结
    查看>>
    java-面向对象编程
    查看>>
    TCP协议
    查看>>
    【iOS学习笔记】01-开篇
    查看>>
    MySQL多实例安装
    查看>>
    用一个玩具例子说明基于视频的超分辨率重建的基本思想
    查看>>
    集训 D1T1 clique
    查看>>
    ContentProvider类的设计分析
    查看>>
    Codeforces 869E The Untended Antiquity
    查看>>
    boost 相关
    查看>>
    在Ubuntu Server下搭建LAMP环境
    查看>>
    Android开发详解之onTouch和onClick详解
    查看>>
    nodejs dateformat date-utils
    查看>>
    【sicily】卡片游戏
    查看>>
    日志系统:数据来源的思考
    查看>>
    第一次写代码总结
    查看>>
    [转帖] sparkdev 的 博客 systemd
    查看>>
    [cnbeta] 波音系列飞机价格。。。
    查看>>
    MSTSC 3389 端口修改
    查看>>
    Java数据类型的位数
    查看>>